-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "@noeldemartin/utils",
"version": "0.7.3",
"type": "module",
"sideEffects": false,
"exports": {
"types": "./dist/noeldemartin-utils.d.ts",
"default": "./dist/noeldemartin-utils.js"
},
"files": [
"src",
"dist"
],
"license": "MIT",
"author": "Noel De Martin",
"repository": "github:NoelDeMartin/utils",
"scripts": {
"build": "vite build",
"lint": "noeldemartin-lint src",
"test": "vitest --run",
"test:ci": "vitest --run --reporter verbose",
"verify": "noeldemartin-verify"
},
"packageManager": "pnpm@10.20.0",
"dependencies": {
"idb": "^8.0.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@noeldemartin/eslint-config-typescript": "^0.1.2",
"@noeldemartin/eslint-plugin": "^0.1.0",
"@noeldemartin/scripts": "next",
"@noeldemartin/testing": "next",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"eslint": "^8.57.1",
"prettier-eslint-cli": "^8.0.1",
"publint": "^0.3.12",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9"
},
"eslintConfig": {
"extends": [
"@noeldemartin/eslint-config-typescript"
]
},
"prettier": {
"printWidth": 120
}
}