-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.29 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"version": "0.0.0",
"scripts": {
"prepare": "npm run build",
"build": "npm run build --workspaces --if-present",
"build:main": "npm run build -w packages/emnapi",
"build:core": "npm run build -w packages/core",
"build:runtime": "npm run build -w packages/runtime",
"build:node": "npm run build -w packages/node",
"rebuild:test": "npm run rebuild -w packages/test",
"test": "npm run test -w packages/test",
"test:version": "node ./packages/test/script/test-build-all-napi-version.js",
"release": "node ./script/release.js",
"bump": "npm version -w packages/emnapi -w packages/runtime -w packages/core -w packages/node -w packages/ts-transform-emscripten-parse-tools",
"lint": "eslint \"packages/**/*.ts\""
},
"author": "toyobayashi",
"repository": {
"type": "git",
"url": "git+https://github.com/toyobayashi/emnapi.git"
},
"bugs": {
"url": "https://github.com/toyobayashi/emnapi/issues"
},
"homepage": "https://github.com/toyobayashi/emnapi#readme",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tybys/cross-zip": "^3.1.0",
"@tybys/ts-transform-pure-class": "^0.1.1",
"@tybys/tsapi": "^0.6.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.5",
"rollup": "^4.18.1",
"typescript": "~5.4.2"
},
"workspaces": [
"packages/ts-transform-macro",
"packages/ts-transform-emscripten-esm-library",
"packages/ts-transform-emscripten-parse-tools",
"packages/rollup-plugin-emscripten-esm-library",
"packages/runtime",
"packages/node",
"packages/wasi-threads",
"packages/emnapi",
"packages/core",
"packages/test",
"packages/bench"
]
}