-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
{
"name": "@mmstudio/web",
"version": "1.0.202004231805",
"description": "web frame work",
"scripts": {
"test": "npm run build",
"watch": "tsc -w",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile-amd": "tsc -m amd -d false --outFile ./dist/main.js",
"compile-esm": "tsc",
"compile": "npm run compile-esm && npm run compile-amd",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull [email protected]:mm-core/base.git amd"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/web.git"
},
"homepage": "https://mm-works.github.io",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"蛮蛮",
"蛮蛮工作室",
"插件式",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "taoqf",
"email": "[email protected]"
},
"maintainers": [
{
"name": "taoqf",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"@mmstudio/on": "*"
},
"devDependencies": {
"@mmstudio/on": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"karma": "latest",
"karma-chai": "latest",
"karma-chrome-launcher": "latest",
"karma-mocha": "latest",
"karma-webpack": "latest",
"mocha": "latest",
"typescript": "next",
"webpack": "latest",
"webpack-cli": "latest"
}
}