-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 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
35
36
37
38
39
{
"name": "lut-canvas",
"version": "0.1.0",
"description": "Render RGB lookup tables via canvas",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"source": "src/index.js",
"scripts": {
"start": "parcel ./demo/index.html --open -d build --public-url ./",
"deploy": "parcel build ./demo/index.html -d build --public-url ./",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linkgod/lut-canvas.git"
},
"keywords": [
"javascript",
"lut",
"rgb",
"canvas"
],
"author": "Hsun",
"license": "MIT",
"bugs": {
"url": "https://github.com/linkgod/lut-canvas/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"parcel-bundler": "^1.6.1",
"rollup": "^2.18.2"
}
}