-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@studiorack/core",
"version": "2.0.16",
"description": "Core library containing shared functionality",
"type": "module",
"main": "./build/index.js",
"exports": {
"node": "./build/index.js",
"default": "./build/index-browser.js"
},
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"copy": "copyfiles -u 1 ./src/images/* ./build",
"start": "node build/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "npm run clean && tsc && npm run copy",
"dev": "tsx ./src/index.ts",
"lint": "eslint .",
"test": "vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"format": "prettier . --write",
"test:watch": "vitest ./tests",
"quicktype": "quicktype ./src/types/*.ts -o ./src/convert.ts",
"prepare": "npm run build"
},
"keywords": [
"studiorack",
"plugin",
"library",
"core",
"package"
],
"author": "kmturley",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@vscode/sudo-prompt": "^9.3.1",
"adm-zip": "^0.4.16",
"fs-extra": "^11.2.0",
"glob": "^10.3.6",
"node-fetch": "^2.6.1",
"readline-sync": "^1.4.10",
"semver": "^7.3.4",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/adm-zip": "^0.4.33",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.6.11",
"@types/readline-sync": "^1.4.8",
"@types/semver": "^7.5.8",
"copyfiles": "^2.4.1",
"eslint": "^9.12.0",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"quicktype": "^23.0.168",
"rimraf": "^5.0",
"tsx": "^4.10.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiorack/studiorack-core.git"
},
"bugs": {
"url": "https://github.com/studiorack/studiorack-core/issues"
},
"homepage": "https://github.com/studiorack/studiorack-core#readme"
}