-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "webchuck",
"version": "1.2.9",
"description": "WebChucK is a package for running ChucK code in the browser",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && rollup -c",
"test": "npm run build && bash ./test.sh",
"clean": "rm -rf dist/ && rm -rf docs/ && rm -rf src/wc-bundle.js",
"doc": "typedoc --out docs src/index.ts",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccrma/webchuck.git"
},
"bugs": {
"url": "https://github.com/ccrma/webchuck/issues"
},
"homepage": "https://chuck.stanford.edu/webchuck",
"author": "ChucK Team",
"contributors": [
"Terry Feng",
"Cole Simmons",
"CCRMA"
],
"keywords": [
"WebChucK",
"ChucK"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.10",
"prettier": "^3.2.5",
"rollup": "^3.26.3",
"typedoc": "^0.25.1",
"typescript": "^4.9.3"
}
}