forked from p-code-magazine/p-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@h4us/p-code",
"version": "1.0.0",
"description": "Implementation of P-Code",
"main": "dist/p-code.js",
"unpkg": "dist/p-code.js",
"module": "lib/index.js",
"files": [
"lib",
"dist",
"README.md",
"LANGSPEC.md"
],
"keywords": [
"music",
"esolang",
"livecoding",
"poetry",
"programming"
],
"scripts": {
"build": "webpack --env.production && npm run example:build",
"example:serve": "cd examples/p5-ocr && webpack-dev-server --config webpack.dev.js",
"example:build": "cd examples/p5-ocr && webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p-code-magazine/p-code.git"
},
"author": "p-code-magazine",
"license": "ISC",
"bugs": {
"url": "https://github.com/p-code-magazine/p-code/issues"
},
"homepage": "https://github.com/p-code-magazine/p-code#readme",
"devDependencies": {
"https": "^1.0.0",
"p5": "^1.0.0",
"tesseract.js": "^2.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"tone": "^13.8.25"
}
}