-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "@fermyon/spin-sdk",
"version": "3.1.0",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"j2w": "./bin/j2w.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\"",
"fmt-check": "prettier --check \"src/**/*.{ts,tsx,js,jsx}\"",
"build": "tsc && cp -r src/types ./lib/",
"postinstall": "knitwit-postinstall --wit-path ../../bin/wit --world spin-imports",
"fmt-examples": "prettier --write \"examples/**/*.{ts,tsx,js,jsx}\" --ignore-patterm \"node_modules\""
},
"sideEffects": false,
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"prettier": "^3.2.5",
"typedoc": "^0.27.7",
"typedoc-plugin-missing-exports": "^3.1.0",
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@bytecodealliance/componentize-js": "^0.16.0",
"@fermyon/knitwit": "^0.3.0",
"acorn-walk": "^8.3.4",
"acron": "^1.0.5",
"magic-string": "^0.30.17",
"regexpu-core": "^6.2.0",
"yargs": "^17.7.2"
},
"files": [
"lib",
"bin",
"plugins"
],
"config": {
"knitwit": {
"witPath": "../../bin/wit",
"world": "spin-imports"
}
}
}