-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "@firstdraft.com/cli",
"version": "0.6.0",
"description": "Command-line interface for First Draft",
"license": "MIT",
"type": "module",
"bin": {
"firstdraft": "bin/firstdraft.js"
},
"files": [
"bin",
"docs",
"src",
"RELEASING.md",
"SECURITY.md"
],
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstdraft/cli.git"
},
"bugs": {
"url": "https://github.com/firstdraft/cli/issues"
},
"homepage": "https://github.com/firstdraft/cli#readme",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"scripts": {
"check": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run pack:check && npm run pack:smoke",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"pack:check": "node scripts/check-pack.js",
"pack:smoke": "node scripts/smoke-package.js",
"test": "node scripts/run-tests.js",
"typecheck": "tsc --project jsconfig.json"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.20.1",
"eslint": "10.8.0",
"globals": "17.8.0",
"prettier": "3.9.6",
"typescript": "7.0.2"
}
}