-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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": "2ch-trip",
"version": "4.0.0",
"description": "2ch compatible trip generator",
"keywords": [
"2ch",
"5ch",
"trip",
"tripcode"
],
"homepage": "https://github.com/p-chan/2ch-trip#readme",
"bugs": {
"email": "hello@0x50.io",
"url": "https://github.com/p-chan/2ch-trip/issues"
},
"license": "MIT",
"author": "P-Chan",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/p-chan/2ch-trip.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"fix": "prettier --write .",
"lint": "prettier --check .",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "tsc --noEmit && vitest",
"version:major": "standard-version -r major",
"version:minor": "standard-version -r minor",
"version:patch": "standard-version -r patch"
},
"dependencies": {
"encoding-japanese": "2.2.0",
"unix-crypt-td-js": "1.1.4"
},
"devDependencies": {
"@stardust-configs/prettier-config": "0.3.0",
"@stardust-configs/tsconfig": "0.4.0",
"@types/encoding-japanese": "2.2.1",
"@types/node": "20.17.11",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"standard-version": "9.5.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": ">=14"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write ./CHANGELOG.md"
}
}
}