-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.99 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
{
"name": "@ircam/sc-components",
"version": "3.2.1",
"description": "Web Component library for audio applications",
"authors": [
"Benjamin Matuszewski",
"Aliénor Golvet",
"Etienne Démoulin"
],
"license": "BSD-3-Clause",
"type": "module",
"exports": {
".": "./src/index.js",
"./": "./src/"
},
"unpkg": "./build/bundle.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ircam-ismm/sc-components.git"
},
"bugs": {
"url": "https://github.com/ircam-ismm/sc-components/issues"
},
"homepage": "https://ircam-ismm.github.io/sc-components/",
"keywords": [
"web components",
"web audio",
"lit",
"prototyping",
"interfaces",
"ui",
"webaudio",
"creative coding"
],
"scripts": {
"build": "esbuild src/index.js --bundle --minify --outfile=build/bundle.js",
"preversion": "npm run build",
"dev": "npm run doc",
"doc": "cd docs && npm run dev",
"doc:prod": "cd docs && npm run build:prod",
"test": "cd tests && npm run dev"
},
"dependencies": {
"@babel/runtime": "^7.25.6",
"@codemirror/commands": "^6.6.1",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-yaml": "^6.1.1",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@ircam/sc-utils": "^1.8.0",
"@replit/codemirror-vscode-keymap": "^6.0.2",
"@uiw/codemirror-theme-monokai": "^4.23.0",
"deep-equal": "^2.2.3",
"highlight.js": "^11.9.0",
"lit": "^3.2.0",
"number-precision": "^1.6.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"esbuild": "^0.23.1",
"json5": "^2.2.3",
"npm-run-all": "^4.1.5",
"serve": "^14.2.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}