-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "cube-3d-js",
"version": "1.2.0",
"description": "Provides a 3D cube carousel display with perspective.",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build --emptyOutDir false",
"preview": "vite preview",
"prepare": "husky install",
"test": "VITEST_MIN_THREADS=6 VITEST_MAX_THREADS=6 vitest run --passWithNoTests",
"coverage": "vitest run --coverage",
"format": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohidaka/cube-3d-js.git"
},
"author": "ryohidaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohidaka/cube-3d-js/issues"
},
"homepage": "https://github.com/ryohidaka/cube-3d-js#readme",
"devDependencies": {
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.1.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"lint-staged": {
"**/*": "npx prettier --write --ignore-unknown"
},
"keywords": [
"cube",
"carousel",
"3D"
]
}