-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.18 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": "lasco",
"version": "3.7.0",
"description": "The Sass utilities classes library.",
"type": "module",
"scripts": {
"dev:docs": "vitepress dev docs",
"clean:chunks": "rimraf \"dist/*.js*\" && rimraf \"dist/*.umd.cjs*\"",
"clean:dist": "rimraf \"dist/*\"",
"clean": "npm-run-all --parallel clean:*",
"test": "jest --ci",
"build": "npm run clean:dist && vue-tsc && vite build && npm run clean:chunks",
"build:docs": "vitepress build docs",
"prepare": "husky install && npm run build",
"release": "semantic-release"
},
"engines": {
"node": ">=18.0.0"
},
"sass": "index.scss",
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.14",
"glob": "^7.2.3",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-node-single-context": "^29.0.0",
"jest-junit": "^15.0.0",
"npm-run-all": "^4.1.5",
"postcss-sort-media-queries": "^4.3.0",
"rimraf": "^3.0.2",
"sass-true": "^7.0.1",
"semantic-release": "^21.0.5",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vitepress": "^1.0.0-rc.41",
"vue": "^3.4.3",
"vue-tsc": "^1.8.25"
},
"dependencies": {
"@unsass/breakpoint": "^2.4.0",
"@unsass/css": "^2.1.0",
"@unsass/selector": "^1.3.0",
"@unsass/string": "^1.0.0",
"@unsass/types": "^1.0.2",
"sass": "^1.70.0"
},
"files": [
"*.scss",
"src/**/*",
"CHANGELOG.md"
],
"keywords": [
"sass",
"class",
"utilities",
"library",
"lasco",
"front-end"
],
"license": "MIT",
"homepage": "https://github.com/magnesiumlabs/lasco/tree/main",
"repository": {
"type": "git",
"url": "https://github.com/magnesiumlabs/lasco.git"
},
"bugs": {
"url": "https://github.com/magnesiumlabs/lasco/issues"
}
}