-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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
{
"name": "sketch-kit",
"version": "1.7.0",
"description": "Rapid prototyping framework for HTML5/Javascript",
"main": "index.js",
"bin": {
"sketch-kit": "index.js"
},
"preferGlobal": true,
"type": "module",
"scripts": {
"start": "node index.js",
"test": "mocha 'test/**/*.js'",
"clean": "rimraf sketch-kit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k-may/sketch-kit.git"
},
"keywords": [
"prototyping",
"HTML5",
"kit"
],
"author": "k-may (https://github.com/k-may)",
"license": "ISC",
"bugs": {
"url": "https://github.com/k-may/test/issues"
},
"homepage": "https://github.com/k-may/sketch-kit",
"dependencies": {
"@rollup/plugin-dynamic-import-vars": "^1.4.2",
"chai": "^4.3.6",
"copy-node-modules": "^1.1.1",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.2",
"minimist": "latest",
"mocha": "^9.2.2",
"os": "^0.1.2",
"path": "latest",
"replace": "^1.2.1",
"sass": "^1.50.0",
"vite": "^7.0.0",
"vite-plugin-glsl": "^1.3.3",
"vite-plugin-static-copy": "^3.1.0"
},
"devDependencies": {
"rimraf": "^5.0.5"
}
}