-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "svg-path-mini-tools",
"version": "0.4.1",
"description": "A collection of minimalistic SVG path manipulation utilities",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"lint": "npx eslint ./src",
"build": "npm run clean && vite build --config vite.lib.config.ts",
"build:demo": "vite build",
"clean": "rimraf dist demo-dist",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"version": "npm version",
"version:patch": "npm version patch -m \"chore(release): %s\"",
"version:minor": "npm version minor -m \"feat(release): %s\"",
"version:major": "npm version major -m \"feat(release): %s\"",
"prepublishOnly": "npm run build",
"release": "npm run version:patch && git push --follow-tags origin main && npm publish",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d demo-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tombigel/svg-path-mini-tools.git"
},
"keywords": [
"svg",
"path",
"scale",
"parse"
],
"author": "Tom Bigelajzen <svgutils@tombigel.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tombigel/svg-path-mini-tools/issues"
},
"homepage": "https://github.com/tombigel/svg-path-mini-tools#readme",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.11",
"eslint": "^8.57.0",
"gh-pages": "^6.3.0",
"globals": "^15.2.0",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vite": "^6.3.4",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.2"
}
}