-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@resolid/utils",
"version": "1.4.0",
"description": "Common utils",
"keywords": [
"javascript",
"nodejs",
"resolid",
"typescript"
],
"homepage": "https://www.resolid.tech",
"license": "MIT",
"author": "Huijie Wei",
"repository": {
"type": "git",
"url": "git+https://github.com/resolid/utils.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./date": {
"types": "./dist/date.d.mts",
"import": "./dist/date.mjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"changeset": "changeset",
"build": "tsdown",
"format": "oxfmt",
"lint": "oxlint",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"get-locale-data": "node scripts/get-locale-data.js"
},
"dependencies": {
"nanoid": "^5.1.11"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@resolid/config": "^5.3.16",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^24.12.4",
"@vitest/coverage-v8": "^4.1.6",
"lefthook": "^2.1.6",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"oxlint-tsgolint": "^0.22.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": "^22.13.0 || >=24"
},
"packageManager": "pnpm@11.1.2"
}