-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.82 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
79
{
"name": "@fictjs/skill",
"version": "0.21.0",
"description": "Skill library for Fict-focused coding agents",
"type": "module",
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src",
"skills",
"scripts",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fictjs/skill.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "pnpm build:skills && tsdown",
"build:skills": "node scripts/build-skills.mjs",
"build:skills:check": "node scripts/build-skills.mjs --check",
"validate:skills": "node scripts/validate-skills.mjs",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist coverage",
"prepack": "pnpm build"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"prettier": "^3.8.1",
"tsdown": "^0.22.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18",
"yaml": "^2.8.1"
},
"keywords": [
"fict",
"skill",
"agents",
"compiler",
"runtime"
],
"author": "unadlib",
"license": "MIT"
}