-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "xcanvas-ts",
"version": "0.9.15",
"description": "XCanvas is a powerful and flexible TypeScript library for manipulating HTML5 canvases, making every aspect of canvas manipulation extendable and reusable.",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.mjs"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:npm": "tsc && vite build --config vite.config.npm.js",
"preview": "vite preview",
"setup": "npx node SetupNpmLib.js",
"publish:npm": "vite build --config vite.config.npm.js && npm publish --access public",
"publish:netlify": "vite build --config vite.config.netlify.js"
},
"author": {
"name": "Thomas Le Coz",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tlecoz/XCanvas.git"
},
"bugs": {
"url": "https://github.com/tlecoz/XCanvas/issues"
},
"homepage": "https://github.com/tlecoz/XCanvas#readme",
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"comment-json": "^4.2.3"
}
}