-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.76 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
61
62
63
{
"name": "hashplate-cn",
"private": false,
"version": "1.0.1",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"license": "MIT",
"author": {
"name": "cunzaizhuyi",
"url": "https://github.com/cunzaizhuyi/"
},
"repository": {
"type": "git",
"url": "https://github.com/cunzaizhuyi/hashplate-cn.git"
},
"homepage": "https://github.com/cunzaizhuyi/hashplate-cn#readme",
"url": "https://github.com/cunzaizhuyi/hashplate-cn",
"bugs": {
"url": "https://github.com/cunzaizhuyi/hashplate-cn/issues"
},
"keywords": [
"hash",
"hashing",
"hash generator",
"human readable"
],
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "rimraf dist && vite build",
"build:safe": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"dev:test": "vitest --ui"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/**"
],
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sort-keys-custom-order": "^1.0.5",
"rimraf": "^5.0.7",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}