-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
49
50
51
52
53
{
"name": "charmingjs",
"version": "0.0.7",
"description": "The JavaScript library for generative art based on SVG",
"author": {
"name": "Bairui SU",
"url": "https://charmingjs.org/"
},
"license": "ISC",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"jsdelivr": "dist/charming.umd.min.js",
"unpkg": "dist/charming.umd.min.js",
"repository": {
"type": "git",
"url": "https://github.com/charming-art/charming.git"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "npm run test:js && npm run test:lint && npm run test:format",
"test:js": "vitest",
"test:lint": "eslint src test",
"test:format": "prettier --check src test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublishOnly": "rm -rf dist && rollup -c"
},
"dependencies": {
"charmingjs-vector": "^0.0.2",
"d3-timer": "^3.0.1",
"echox": "^0.0.5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"genji-theme-vitepress": "^0.2.6",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"rollup": "^4.34.4",
"vitepress": "^1.6.3",
"vitest": "^3.0.5"
},
"publishConfig": {
"access": "public"
}
}