-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "@is-it/fifteen",
"version": "1.0.3",
"type": "module",
"description": "A simple package to check if a number is 15",
"main": "dist/index.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"build:pkg": "bun build ./package/*.ts --outdir ./dist --target=node --minify --root package && tsc --emitDeclarationOnly --project tsconfig.pkg.json",
"npm": "bun build:pkg && bun publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimmyxpow/is-it-fifteen.git"
},
"keywords": [
"check",
"number",
"fifteen",
"typescript"
],
"author": "kimmyxpow",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmyxpow/is-it-fifteen/issues"
},
"homepage": "https://15.pow.kim",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@iconify/react": "^5.2.0",
"@react-three/fiber": "^8.17.10",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0-beta.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": "^0.171.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"bun-types": "^1.1.42",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"framer-motion": "^11.15.0",
"globals": "^15.14.0",
"motion": "^11.15.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.0.0-beta.8",
"three": "^0.172.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}