-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@silkjs/linson",
"version": "0.1.12-1",
"description": "A Vue 3 Component Library.",
"main": "dist/linson.cjs.js",
"module": "dist/linson.esm.js",
"typings": "types/linson.d.ts",
"files": [
"dist",
"types"
],
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "cd app && npm run dev",
"build": "npm run rollup && npm run typescript",
"rollup": "rimraf dist/* && rollup --config ./rollup.config.ts",
"typescript": "rimraf types/* && tsc -b tsconfig.build.json",
"test": "jest --config=jest.config.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix --quiet",
"style": "stylelint 'package/**/*.(scss|css)' --fix",
"prettier": "prettier --write .",
"local": "npm run build && npm link",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silkjs/linson.git"
},
"keywords": [
"linson",
"vue",
"tsx",
"ui"
],
"authors": [
{
"name": "dasoncheng",
"email": "dasoncheng@outlook.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/silkjs/linson/issues"
},
"homepage": "https://github.com/silkjs/linson#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/test-utils": "^2.0.0-rc.21",
"autoprefixer": "^10.4.5",
"babel-jest": "^27.5.1",
"eslint": "^8.14.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"nanoid": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.50.1",
"stylelint": "^14.8.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vue": "^3.2.31"
},
"browserslist": [
"defaults",
"not ie < 8",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}