-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.74 KB
/
package.json
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
{
"name": "@typematter/archetype",
"version": "0.0.1-next.12",
"description": "Archetype system for validating frontmatter.",
"private": false,
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"build": "tsup",
"check": "pnpm format && pnpm lint && tsc --noEmit",
"clean": "tsup --clean",
"dev": "vitest --watch src",
"format": "prettier --write {src,tests}/**/*.{js,ts}",
"lint": "eslint",
"test": "pnpm test:unit && pnpm test:integration",
"test:unit": "vitest --run src",
"test:integration": "pnpm build && vitest --run tests"
},
"keywords": [
"archetype",
"frontmatter",
"markdown",
"typescript"
],
"author": {
"email": "[email protected]",
"name": "Matthew Gibbons",
"url": "https://github.com/typematter"
},
"license": "MIT",
"publishConfig": {
"@typematter:registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/typematter/archetype.git"
},
"bugs": {
"url": "https://github.com/typematter/archetype/issues"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@typematter/pipeline": "github:typematter/pipeline",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
},
"dependencies": {
"esm-env": "^1.1.4",
"yaml": "^2.6.0"
}
}