-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "sb3-js",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest test/*",
"lint": "tsc && eslint \"./src\" \"./test\" --ext .js,.ts",
"build": "rollup -c rollup.config.js",
"watch": "rollup --watch -c rollup.config.js",
"dev": "rollup --watch -c rollup.config.js & sirv ./ --port 8000 -D"
},
"author": "valadaptive",
"license": "ISC OR MIT OR Apache-2.0",
"type": "module",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@stylistic/eslint-plugin": "^1.5.3",
"@stylistic/eslint-plugin-migrate": "^1.5.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"rollup": "^4.12.0",
"rollup-plugin-copy": "^3.5.0",
"sirv-cli": "^2.0.2",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"tslib": "^2.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"description": "",
"dependencies": {
"@cto.af/linebreak": "git://github.com/valadaptive/linebreak.git#web",
"gl-matrix": "^3.4.3",
"unzipit": "^1.4.3"
}
}