-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
33 lines (33 loc) · 940 Bytes
/
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
{
"name": "textalive-app-p5js",
"private": true,
"version": "1.0.0",
"description": "p5.js を使った TextAlive App API の作例",
"scripts": {
"dev": "parcel src/index.html --dist-dir dev",
"build": "parcel build src/index.html --public-url ./ --dist-dir docs --no-source-maps",
"clean": "del-cli .parcel-cache dev docs",
"prebuild": "del-cli docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TextAliveJp/textalive-app-p5js.git"
},
"keywords": [
"textalive"
],
"author": "Jun Kato <i@junkato.jp> (https://junkato.jp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TextAliveJp/textalive-app-p5js/issues"
},
"homepage": "https://github.com/TextAliveJp/textalive-app-p5js#readme",
"dependencies": {
"p5": "^1.1.9",
"textalive-app-api": "^0.3.0"
},
"devDependencies": {
"del-cli": "^4.0.1",
"parcel": "^2.0.0-beta.3.1"
}
}