-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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
{
"name": "@mmstudio/base",
"version": "1.0.0",
"description": "$desc",
"scripts": {
"dev": "tsc -w",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile": "tsc",
"build": "yarn clean && yarn lint && yarn compile",
"up": "echo 'ok'",
"release": "yarn build && standard-version && git push --follow-tags origin main && npm publish"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/base.git"
},
"homepage": "https://01factory.github.io",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"01",
"零壹",
"微工厂",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "$user",
"email": "[email protected]"
},
"maintainers": [
{
"name": "taoqf",
"email": "[email protected]"
}
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": { },
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-config-ts-lambdas": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"prettier": "latest",
"standard-version": "latest",
"typescript": "next"
}
}