-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "@fehujs/template-parser",
"version": "1.0.3",
"description": "Small template parser",
"main": "build/index.js",
"type": "module",
"files": [
"./build/**/*",
"README.md",
"LICENCE"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"build": "node scripts/build.cjs",
"build:types": "tsc -d --declarationDir build --declarationMap --emitDeclarationOnly",
"release": "pnpm build && pnpm build:types",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fehujs/template-parser.git"
},
"keywords": [
"template",
"syntax"
],
"author": "Pascal LLeonart",
"license": "MIT",
"bugs": {
"url": "https://github.com/fehujs/template-parser/issues"
},
"homepage": "https://github.com/fehujs/template-parser#readme",
"devDependencies": {
"@fehujs/build": "^0.2.0",
"@fehujs/tsconfig": "^1.0.0",
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}