-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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": "atypical-ui",
"version": "0.0.7",
"scripts": {
"build": "pnpm clean && pnpm gen:components && vue-tsc --emitDeclarationOnly && vite build && pnpm gen:type",
"dev": "vite",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"style": "npx stylelint '**/*.css'",
"clean": "rm -rf dist",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:serve": "vuepress serve docs",
"gen:components": "node src/build/gen-components.js",
"gen:type": "node src/build/gen-type.js"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.0-rc.21",
"@vuepress/client": "^2.0.0-beta.45",
"@vuepress/plugin-search": "^2.0.0-beta.45",
"@yanyu-fe/vuepress-plugin-code-block": "^0.1.1",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-plugin-vue": "^8.7.1",
"fast-glob": "^3.2.11",
"happy-dom": "^3.2.0",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lodash-es": "^4.17.21",
"postcss-mixins": "^9.0.2",
"postcss-rem": "^2.0.2",
"rollup-plugin-delete": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.1.1",
"vitest": "^0.12.6",
"vue": "^3.2.33",
"vue-tsc": "^0.34.13",
"vuepress": "^2.0.0-beta.45"
},
"files": [
"dist"
],
"main": "./dist/atypical.umd.js",
"module": "./dist/atypical.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/atypical.es.js",
"require": "./dist/atypical.umd.js"
},
"./dist/style.css": "./dist/style.css"
}
}