-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "skillflag",
"version": "0.1.0",
"description": "Skillflag producer CLI reference implementation.",
"license": "MIT",
"author": "Onur Solmaz <info@solmaz.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/dutifuldev/skillflag.git"
},
"bugs": {
"url": "https://github.com/dutifuldev/skillflag/issues"
},
"homepage": "https://github.com/dutifuldev/skillflag#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"skillflag": "dist/bin/skillflag.js",
"skill-install": "dist/bin/skill-install.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"lint": "eslint . --max-warnings 0",
"prepack": "npm run build",
"prepare": "husky",
"release": "release-it",
"release:ci": "release-it --ci",
"test": "npm run -s build:test && node --test dist-test/test/integration/*.test.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs",
"skills"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"tar-stream": "^3.1.7"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^18.19.0",
"@types/tar-stream": "^3.1.3",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.0.0",
"release-it": "^19.2.4",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write --ignore-unknown"
]
}
}