-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "lssm",
"version": "1.1.2",
"repository": "https://github.com/syropian/lssm",
"author": "Collin Henderson <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/lssm.cjs",
"module": "./dist/lssm.mjs",
"exports": {
".": {
"require": "./dist/lssm.cjs",
"import": "./dist/lssm.mjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc ./src/index.ts --target es2017 --noEmit && vite build --mode lib",
"build:demo": "vite build --mode example",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint --ext .ts --ignore-path .gitignore ./src ./test ./example --fix",
"format": "prettier ./src ./test ./example -w -u"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1",
"vue": "^3.4.21"
}
}