-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.21 KB
/
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
{
"name": "ts-string-literal-enum-plugin",
"version": "0.0.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:HearTao/ts-string-literal-enum-plugin.git",
"author": "kingwl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/microsoft__typescript-etw": "^0.1.1",
"open-typescript": "^4.3.0-dev.20210303",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"scripts": {
"build": "tsc",
"build:extension": "cd extension && yarn build",
"build:release": "yarn build:extension",
"bootstrap:demo": "cd tests/demo && yarn --no-lockfile",
"bootstrap:extension": "cd extension && yarn --no-lockfile",
"bootstrap:all": "yarn && yarn bootstrap:demo && yarn bootstrap:extension",
"bootstrap:release": "yarn bootstrap:extension",
"link:demo": "cd tests/demo && yarn link ts-string-literal-enum-plugin",
"link:extension": "cd extension && yarn link ts-string-literal-enum-plugin",
"link:all": "yarn link && yarn link:demo && yarn link:extension",
"lint": "prettier -c --config ./prettier.config.js ./src/**/*.{ts,tsx} ./tests/**/*.{ts,tsx}",
"prettier": "yarn lint --write"
},
"files": [
"dist"
]
}