forked from TextAliveJp/textalive-app-p5js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 962 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
34
{
"name": "textalive-app-p5js",
"private": true,
"version": "1.0.0",
"description": "p5.js を使った TextAlive App API の作例",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html --out-dir dev",
"build": "parcel build src/index.html --public-url ./ --out-dir docs --no-source-maps",
"clean": "del-cli .cache dev 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.2.1"
},
"devDependencies": {
"del-cli": "^3.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-clean-dist": "0.0.6"
}
}