-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "roughness",
"version": "0.1.0-beta.22",
"description": "A Vue component library with hand-drawn appearance",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"doc": "docs"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"prepack": "vite build",
"release": "release-it",
"release:beta-as-latest": "pnpm run release --preRelease=beta --npm.tag=latest",
"docs:dev": "pnpm -F docs dev",
"docs:build": "pnpm -F docs build",
"lint:script": "eslint --cache --fix './**/*.{cjs,js,ts,vue}'",
"lint:style": "stylelint --ignore-path .gitignore --cache --fix ./**/*.{css,vue}",
"lint": "pnpm run lint:script && pnpm run lint:style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyanSalt/roughness.git"
},
"keywords": [
"component",
"rough",
"vue"
],
"author": "CyanSalt",
"license": "ISC",
"bugs": {
"url": "https://github.com/CyanSalt/roughness/issues"
},
"homepage": "https://github.com/CyanSalt/roughness#readme",
"devDependencies": {
"@cyansalt/eslint-config": "^4.0.3",
"@cyansalt/stylelint-config": "^4.0.3",
"@cyansalt/tsconfig": "^2.2.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.30",
"@types/parse-unit": "^1.0.3",
"@types/to-px": "^1.1.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-macros/reactivity-transform": "^0.4.3",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.9.0",
"colord": "^2.9.3",
"eslint": "^9.3.0",
"fast-glob": "^3.3.2",
"lodash-es": "^4.17.21",
"lucide": "^0.363.0",
"parse-unit": "^1.0.1",
"release-it": "^17.1.1",
"roughjs": "^4.6.6",
"sass": "^1.72.0",
"stylelint": "^16.5.0",
"to-px": "^1.1.0",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-dts": "^3.8.1",
"vue": "^3.4.21"
},
"peerDependencies": {
"vue": ">=3.3.0"
}
}