-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "use-singleton",
"version": "1.0.0",
"description": "Create the powerful singleton easily",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.min.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vitest dev",
"build": "vite build",
"test": "vitest run --coverage",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"publish": "npm run test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbb00/use-singleton.git"
},
"keywords": [
"singleton",
"lazy",
"immediately",
"async",
"typescript"
],
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"author": "lbb00",
"license": "MIT",
"bugs": {
"url": "https://github.com/lbb00/use-singleton/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-c8": "^0.29.2",
"eslint": "^8.36.0",
"terser": "^5.16.6",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.29.2"
}
}