-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.36 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@baku89/pave",
"version": "0.5.1",
"description": "A environment-agnostic toolkit for manipulating SVG/Path2D curves.",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:api": "npm run build:api -- --watch",
"dev:doc": "vuepress dev docs",
"dev:test": "vitest",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"build:api": "typedoc src/index.ts",
"build:doc": "npm run build:api; vuepress build docs",
"lint": "eslint",
"test": "vitest --watch=false",
"prepare": "npm run build",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baku89/pave.git"
},
"keywords": [
"svg",
"path",
"transform",
"graphics",
"vector",
"matrix"
],
"author": "Baku Hashimoto <[email protected]>",
"files": [
"lib"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/baku89/pave/issues"
},
"homepage": "https://baku89.github.io/pave",
"devDependencies": {
"@types/ccapture.js": "^1.1.3",
"@types/p5": "^1.7.6",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vuepress/bundler-vite": "2.0.0-rc.2",
"@vuepress/plugin-palette": "^2.0.0-rc.14",
"@vuepress/theme-default": "2.0.0-rc.1",
"@vueuse/core": "^11.1.0",
"concurrently": "^9.0.1",
"dom-to-image-more": "^3.5.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.29.0",
"jsdom": "^25.0.1",
"monaco-editor": "^0.52.0",
"monaco-editor-vue3": "^0.1.10",
"monaco-themes": "^0.4.4",
"prettier": "^3.3.3",
"safer-eval": "^1.3.6",
"stylus": "^0.63.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"vite-plugin-monaco-editor": "^1.1.0",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-eslint-parser": "^9.4.3",
"vuepress": "2.0.0-rc.1"
},
"dependencies": {
"@types/bezier-js": "^4.1.3",
"bezier-js": "^6.1.4",
"linearly": "0.32.0",
"paper": "^0.12.18",
"paperjs-offset": "^1.0.8",
"svgpath": "^2.6.0"
}
}