-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@tidaltheory/firmament",
"version": "0.1.0",
"license": "ISC",
"author": "Jeff",
"main": "dist/index.js",
"module": "dist/firmament.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build --format cjs,esm,umd --tsconfig ./tsconfig.tsdx.json",
"build:playground": "NODE_ENV=production vite build playground",
"lint": "tsdx lint",
"prepare": "npm run build",
"release": "npm run build && changeset publish",
"size": "size-limit",
"start": "tsdx watch",
"start:playground": "vite serve playground",
"test": "tsdx test --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,vue}": [
"stylelint --fix"
],
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
],
"package.json": [
"prettier --write"
]
},
"prettier": {
"htmlWhitespaceSensitivity": "css",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@changesets/changelog-github": "0.3.0",
"@changesets/cli": "2.14.1",
"@size-limit/preset-small-lib": "4.10.2",
"@tailwindcss/typography": "0.4.0",
"@testing-library/dom": "7.30.3",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/vue": "6.4.0",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"@vitejs/plugin-vue": "2.2.4",
"@vue/cli-plugin-typescript": "4.5.12",
"@vue/cli-plugin-unit-jest": "4.5.12",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/test-utils": "2.0.0-rc.6",
"@zazen/eslint-config": "2.3.0",
"eslint": "7.28.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-vue": "7.4.1",
"husky": "4.3.8",
"import-sort-style-python": "1.0.2",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "0.0.6",
"prettier-plugin-packagejson": "2.2.10",
"rollup-plugin-vue": "6.0.0",
"size-limit": "4.10.2",
"stylelint": "13.13.1",
"tailwindcss": "2.0.4",
"tailwindcss-capsize": "1.2.2",
"tsdx": "0.14.1",
"tslib": "2.1.0",
"typescript": "4.2.3",
"vite": "2.8.6",
"vite-plugin-pages": "0.21.4",
"vue": "3.2.31",
"vue-router": "4.0.6"
},
"peerDependencies": {
"vue": ">=3"
},
"engines": {
"node": ">=12"
},
"importSort": {
".js,.ts,.vue": {
"parser": "babylon",
"style": "python",
"options": {
"knownFramework": [
"@vue",
"vue",
"vue-router"
],
"knownFirstparty": [
"~",
"firmament"
]
}
}
},
"size-limit": [
{
"path": "dist/firmament.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/firmament.esm.js",
"limit": "10 KB"
}
]
}