-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "geo-pattern-ts",
"type": "module",
"version": "0.1.1",
"packageManager": "pnpm@9.1.4",
"description": "Generate beautiful SVG patterns",
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo)",
"license": "MIT",
"homepage": "https://github.com/pengzhanbo/geo-pattern-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pengzhanbo/geo-pattern-ts.git"
},
"keywords": [
"svg",
"pattern",
"geometric",
"background"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"preview:dev": "vite dev preview --config ./preview/vite.config.ts",
"preview:build": "vite build preview --config ./preview/vite.config.ts",
"build": "tsup",
"lint": "eslint .",
"prepublishOnly": "pnpm run build",
"test": "vitest run --reporter verbose",
"release": "bumpp package.json --commit --push --tag && npm publish --access public"
},
"devDependencies": {
"@pengzhanbo/eslint-config": "^1.11.0",
"@types/node": "^20.14.2",
"bumpp": "^9.4.1",
"eslint": "^9.4.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^1.6.0"
}
}