-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.83 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
80
81
82
{
"name": "@402md/skillmd",
"version": "0.1.5",
"description": "Parser, validator, and generator for SKILL.md — the spec-as-code for paid AI agent skills",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"yaml": "^2.7.1"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.21",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"skillmd",
"skill.md",
"x402",
"402",
"ai-agents",
"payment",
"protocol",
"parser",
"validator"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/402md/skillmd"
},
"engines": {
"node": ">=18"
}
}