-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 986 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "switchblade-sdk",
"version": "1.2.1",
"description": "A library for interacting with Switchblade servers",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:ems && npm run build:cjs",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:ems": "tsc --module esnext --outDir dist/ems",
"watch": "npm run build && npm-watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build && git push --tags"
},
"exports": {
".": {
"require": "./dist/cjs/src/index.js",
"default": "./dist/ems/src/index.js"
}
},
"author": "Mike Beasley",
"repository": {
"url": "https://www.github.com/MikeBeas/switchblade-sdk"
},
"license": "MIT",
"devDependencies": {
"npm-watch": "^0.13.0",
"typescript": "^5.7.2"
},
"types": "dist/ems/src/index.d.ts",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,css,ts,json"
}
}
}