-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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": "hyren",
"version": "1.1.3",
"description": "A tampermonkey script to use Turbowarp compiler anywhere.",
"main": "dist/main.js",
"types": "./dist/index.d.ts",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"lint:type": "tsc --noEmit -p ./tsconfig.json",
"fix": "eslint ./src --fix",
"build": "cd scratch-render && npm run build && cd .. && tsup src/index.ts --format iife --minify",
"dev": "cd scratch-render && npm run build && cd .. && tsup src/index.ts --format iife",
"build:injector": "cd scratch-render && npm run build && cd .. && tsup src/injector.ts --format esm --minify",
"dev:injector": "cd scratch-render && npm run build && cd .. && tsup src/injector.ts --format esm",
"format": "prettier ./src *.md -c -w",
"lint:format": "prettier ./src *.md -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FurryR/hyren.git"
},
"author": "FurryR",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/FurryR/hyren/issues"
},
"pre-commit": [],
"homepage": "https://github.com/FurryR/lpp-scratch#readme",
"devDependencies": {
"@turbowarp/types": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"pre-commit": "^1.2.2",
"prettier": "^3.2.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@turbowarp/json": "^0.1.2"
}
}