-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
29 lines (29 loc) · 981 Bytes
/
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
{
"name": "scratch-ext",
"version": "1.0.0",
"description": "Scaffolding for Javascript/Typescript Scratch extensions",
"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 && http-server ./dist -p 8080 --cors",
"build": "tsup",
"build:turbowarp": "tsup && (npx prettier --config turbowarp/.prettierrc --parser acorn < dist/index.global.js) > dist/index.global.formatted.js",
"format": "prettier ./src -c -w",
"lint:format": "prettier ./src -c"
},
"author": "FurryR",
"license": "MIT",
"devDependencies": {
"@turbowarp/types": "^0.0.12",
"@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"
}
}