-
-
Notifications
You must be signed in to change notification settings - Fork 494
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "template_js",
"description": "A javascript template engine, simple, easy & extras, support webpack, rollup and fis",
"version": "1.0.0",
"repository": "git@github.com:yanhaijing/template.js.git",
"author": "yanhaijing <yanhaijing@yeah.net>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/parser",
"packages/precompiler",
"packages/runtime",
"packages/template",
"packages/browserify-templatejs",
"packages/esbuild-plugin-templatejs",
"packages/fis-parser-template",
"packages/gulp-templatejs",
"packages/parcel-transformer-template",
"packages/rollup-plugin-templatejs",
"packages/template-loader",
"packages/cli"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build"
},
"devDependencies": {
"typescript": "^5.2.2",
"eslint": "^8.54.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "3.1.0",
"lerna": "^3.22.1"
},
"dependencies": {}
}