-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.59 KB
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
{
"name": "@samatech/postcss-basics",
"version": "0.7.3",
"description": "Simple opinionated PostCSS plugin pack.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"pack"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "dist/index.d.mts",
"files": [
"lib",
"dist"
],
"author": "SamaTech <samatechtw@gmail.com>",
"license": "MIT",
"repository": "samatechtw/postcss-basics",
"engines": {
"node": ">=18.0"
},
"scripts": {
"build": "rm -rf dist/* && tsup lib/index.ts --dts --format esm,cjs",
"lint": "eslint --ext .js index.js",
"format": "eslint --fix --ext .js index.js",
"test": "vitest run"
},
"peerDependencies": {
"postcss": "^8.3.6"
},
"dependencies": {
"@samatech/postcss-colors": "^0.5.2",
"autoprefixer": "^10.4.16",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"eslint-config-standard"
],
"rules": {
"comma-dangle": 0
}
}
}