-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "@taep96/squircle-path",
"version": "1.0.0",
"description": "Generate squircle paths",
"keywords": [
"squircle",
"clip-path",
"path",
"svg",
"typescript",
"ts"
],
"license": "MIT",
"repository": "github:taep96/squircle-path",
"homepage": "https://taep96.moe/projects/squircle-path",
"author": "taep96 <taep96@cock.li> (https://taep96.moe/)",
"files": [
"dist"
],
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun bun.build.ts",
"dev": " bun test --watch",
"lint": "tsc && eslint . --cache --cache-location node_modules/.cache/eslint",
"format": "prettier . --check --cache --write",
"ci": "bun lint && bun test && bun run build",
"publish": "bun ci && changeset publish"
},
"dependencies": {
"@taep96/svg-path-utils": "^1.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"bun-plugin-dts": "^0.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}