generated from FurryR/scratch-ext
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.12 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
{
"name": "better-quake",
"version": "1.1.0",
"description": "Better shader loader.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"lint:type": "tsc --noEmit -p ./tsconfig.json",
"fix": "eslint ./src --fix",
"start": "tsup src/withL10n.ts && http-server ./dist -p 8000 --cors",
"build": "tsup src/withL10n.ts",
"build:turbowarp": "tsup src/index.ts && (npx prettier --config turbowarp/.prettierrc --parser acorn < dist/index.global.js) > dist/index.global.formatted.js && rimraf dist/index.global.js",
"format": "prettier ./src -c -w",
"lint:format": "prettier ./src -c"
},
"author": "Fath11",
"license": "MPL-2.0",
"devDependencies": {
"@turbowarp/types": "git+https://github.com/TurboWarp/types-tw.git#tw",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"http-server": "^14.1.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"twgl.js": "^5.5.4",
"url-loader": "^4.1.1"
}
}