-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 KB
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
{
"name": "@bbx-audio/nectar",
"version": "0.2.0",
"description": "Collection of JUCE-y modules for building web-based plugin GUIs 🧃",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blackboxaudio/nectar.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./init": "./dist/juce.js"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn build:web",
"build:web": "tsc && vite build",
"build:docs": "typedoc --out docs src/index.ts",
"clean": "rimraf dist",
"dev": "vite build --watch --mode developmenet",
"format": "yarn format:fix",
"format:check": "prettier --check \"**/*.{ts,js,json}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json}\"",
"increment": "node scripts/increment_version.js",
"lint": "yarn lint:fix",
"lint:check": "eslint --cache --debug \"**/*.{ts,js}\"",
"lint:fix": "eslint --cache --fix \"**/*.{ts,js}\"",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"eslint": "9.33.0",
"globals": "16.3.0",
"husky": "8.0.3",
"jiti": "2.5.1",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"typedoc": "0.28.12",
"typescript": "5.9.2",
"typescript-eslint": "8.40.0",
"vite": "7.1.3",
"vite-plugin-circular-dependency": "0.5.0",
"vite-plugin-dts": "4.5.4",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"lint-staged": {
"*.{ts,js}": "yarn lint",
"*.{ts,js,json}": "yarn format"
}
}