-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "@demccormack/write",
"version": "0.0.1",
"description": "Toolkit for writers",
"displayName": "Write",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"write": "dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"write": "node dist/index.js",
"dev": "tsc --watch & node --watch dist/index.js",
"dev:ts": "tsx --watch src/index.ts",
"build": "tsc && cp -r src/templates dist/",
"test": "node --test test/**/*.test.ts",
"test:watch": "node --test --watch test/**/*.test.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"write",
"writing",
"text",
"editor"
],
"author": "Daniel Edward McCormack",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/demccormack/write.git"
},
"bugs": {
"url": "https://github.com/demccormack/write/issues"
},
"homepage": "https://github.com/demccormack/write#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^8.0.0",
"@types/node": "^25.2.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.3.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
}
}