-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "@tozd/identifier",
"version": "0.4.0",
"type": "module",
"description": "Readable global identifiers.",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/tozd/identifier.git"
},
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"!src/*.test.ts"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint --fix src",
"fmt": "prettier src --write",
"test": "vitest",
"coverage": "vitest --coverage",
"test-ci": "vitest run --reporter junit --reporter default --outputFile tests.xml --coverage",
"upgrade": "ncu -u"
},
"dependencies": {
"bs58": "^6.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"npm-check-updates": "^17.1.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
},
"publishConfig": {
"access": "public"
}
}