-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.61 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wa-ulid",
"version": "1.0.0",
"description": "A high-performance ULID (Universally Unique Lexicographically Sortable Identifier) generator using WebAssembly, up to 40x faster than traditional implementations, optimized for backend use.",
"type": "module",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"main": "dist/index.umd.js",
"bin": {
"wa-ulid": "./bin/cli.js"
},
"scripts": {
"benchmark": "node benchmark.js",
"build": "pnpm build:wasm && pnpm build:js",
"build:wasm": "wasm-pack build --target web --no-pack --release",
"build:js": "rollup -c && tsc --emitDeclarationOnly -p tsconfig.build.json",
"format": "prettier **/*.{md,ts,js,json} -w",
"format:check": "prettier **/*.{md,ts,js,json} --check",
"lint": "eslint **/*.{ts,js} --quiet",
"lint:fix": "eslint **/*.{ts,js} --quiet --fix",
"postinstall": "pnpm build",
"prepare": "husky install",
"pretest": "pnpm build",
"prepublishOnly": "pnpm build",
"start": "node bin/cli.js",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiosaka/wa-ulid.git"
},
"keywords": [
"rust",
"ulid",
"wasm",
"webassembly"
],
"author": "Yuji Isobe",
"license": "MIT",
"bugs": {
"url": "https://github.com/yujiosaka/wa-ulid/issues"
},
"homepage": "https://github.com/yujiosaka/wa-ulid#readme",
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@rollup/plugin-wasm": "^6.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/lolex": "^5.1.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"benchmark": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lolex": "^6.0.0",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"rollup-plugin-typescript": "^1.0.1",
"semantic-release": "^23.0.8",
"typescript": "^5.4.5",
"ulid": "^2.3.0",
"vitest": "^1.5.3"
},
"lint-staged": {
"**/*.{ts,js}": [
"eslint --fix"
],
"**/*.{md,ts,js,json}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.0.6"
}