-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "unit-path",
"private": false,
"version": "0.0.4",
"author": "humandetail",
"keywords": [
"unitPath",
"cruve",
"points",
"path",
"bezier",
"arcs",
"line"
],
"description": "Get points from paths that like straight lines, quadratic Bessel curves, cubic Bessel curves, circles, arcs",
"type": "module",
"main": "dist/unit-path.js",
"brower": "dist/unit-path.iife.js",
"module": "dist/unit-path.js",
"files": ["dist/*"],
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/unit-path.js"
}
},
"unpkg": "dist/unit-path.js",
"jsdelivr": "dits/unit-path.js",
"homepage": "https://github.com/humandetail/unit-path#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/humandetail/unit-path.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/humandetail/unit-path/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest run",
"coverage": "vitest run --coverage",
"codecov": "codecov",
"lint": "eslint --fix"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5",
"@vitest/coverage-c8": "^0.24.3",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.6.1",
"vitest": "^0.24.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}