generated from uni-helper/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "@uni-helper/localforage-adapter",
"type": "module",
"version": "1.0.2",
"packageManager": "[email protected]",
"description": "",
"author": "Uni-Helper,censujiang",
"license": "MIT",
"homepage": "https://github.com/uni-helper/localForage-adapter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/localForage-adapter.git"
},
"bugs": "https://github.com/uni-helper/localForage-adapter/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "unbuild",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.27",
"@types/node": "^20.8.6",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"esno": "^0.17.0",
"localforage": "^1.10.0",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.11",
"vitest": "^0.34.6"
}
}