-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.37 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.37 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@d34d/w-orm",
"version": "0.5.0",
"description": "IndexedDB ORM",
"author": {
"name": "D34DPlayer",
"email": "carlos@d34d.one",
"url": "https://github.com/D34DPlayer"
},
"license": "MIT",
"homepage": "https://github.com/D34DPlayer/w-orm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/D34DPlayer/w-orm.git"
},
"bugs": {
"url": "https://github.com/D34DPlayer/w-orm/issues"
},
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "rimraf dist",
"build:lib": "tsc --module commonjs",
"build:dist": "vite build",
"build:docs": "typedoc",
"build": "pnpm build:dist && pnpm build:lib",
"start": "vite",
"prepare": "pnpm build",
"prepublishOnly": "pnpm lint",
"preversion": "pnpm lint",
"version": "pnpm lint:fix && git add -A src",
"postversion": "git push && git push --tags",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch --ui"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@antfu/eslint-config": "^0.37.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.10",
"@typescript/lib-dom": "npm:@types/web@^0.0.99",
"@vitest/coverage-istanbul": "^0.31.1",
"@vitest/ui": "^0.31.1",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"fake-indexeddb": "^4.0.1",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.4.1",
"serve": "^14.2.0",
"shelljs": "^0.8.5",
"simple-git-hooks": "^2.8.1",
"terser": "^5.17.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typedoc": "^0.23.28",
"typedoc-theme-yaf": "^0.0.4",
"typescript": "~4.x",
"vite": "^4.3.8",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.1",
"webdriverio": "^8.10.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}