-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@unglish/word-generator",
"version": "0.5.0",
"IDGAFversion": "u",
"description": "A simple generator for creating unglish words.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"dev": "concurrently \"vite\" \"tsc --watch\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unglish/word-generator.git"
},
"keywords": [
"unglish",
"word",
"generator",
"phonology"
],
"author": "depatchedmode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unglish/word-generator/issues"
},
"homepage": "https://github.com/unglish/word-generator#readme",
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"concurrently": "^8.2.2",
"eslint": "^7.0.0",
"prettier": "^2.0.0",
"typescript": "^4.9.5",
"vite": "^5.0.12",
"vitest": "^1.0.0"
}
}