-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 KB
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
{
"name": "@ky-y./utils",
"version": "0.0.0",
"type": "module",
"repository": "https://github.com/ky-y/utils",
"author": "kyoya0819",
"license": "MIT",
"scripts": {
"build": "tsc & vite build",
"build:watch": "run-p build:tsc:watch build:vite:watch",
"build:tsc": "tsc",
"build:tsc:watch": "tsc -w",
"build:vite": "vite build",
"build:vite:watch": "vite build -w",
"lint": "eslint \"./**/*.{js,ts,jsx,tsx}\"",
"lint:fix": "eslint \"./**/*.{js,ts,jsx,tsx}\" --fix",
"test": "vitest",
"prepare": "npm run build"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"dependencies": {
"fast-sort": "^3.4.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@types/node": "^22.14.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3",
"vite": "^6.2.5",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-lib": "^2.1.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"peerDependencies": {
"ajv": "^8.17.1"
},
"packageManager": "bun@1.2.8"
}