-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "@xuchaoqian/localstore",
"version": "0.5.4",
"description": "Universal async localStorage-like API for Node, Browsers, WebWorker.",
"author": "Chaoqian Xu <[email protected]>",
"license": "Apache License Version 2.0",
"main": "lib/localstore.node.js",
"types": "lib/localstore.node.d.ts",
"browser": {
"./lib/localstore.node.js": "./lib/localstore.browser.js",
"./lib/localstore.node.d.ts": "./lib/localstore.browser.d.ts"
},
"homepage": "https://github.com/xuchaoqian/localstore-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xuchaoqian/localstore-js.git"
},
"bugs": {
"url": "https://github.com/xuchaoqian/localstore-js/issues"
},
"scripts": {
"build": "rm lib/* && npx tsc",
"test": "npx jest --coverage",
"format": "npx prettier --write \"src/**/*.{js,ts}\" --ignore-path *.d.ts",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx --ignore-pattern *.d.ts"
},
"dependencies": {
"idb-keyval": "^6.2.1",
"node-localstorage": "^3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@msgpack/msgpack": "^2.8.0",
"@types/node-localstorage": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"babel-jest": "^29.5.0",
"bufferutil": "^4.0.7",
"canvas": "^2.11.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"utf-8-validate": "^6.0.3",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {}
}