-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.16 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
72
73
74
{
"name": "astro-plugins",
"version": "1.5.0",
"private": true,
"description": "Various astro plugins such as astro-htmlnano to minify Astro files with HTMLNano and CSSNano",
"keywords": [
"parcel",
"astro",
"astro-parcel",
"astrobuild",
"parceljs",
"build",
"bundle",
"plugin",
"html",
"posthtml",
"relative",
"relative-path",
"path",
"root",
"url",
"relative-attribute",
"attribute"
],
"homepage": "https://github.com/aminya/astro-plugins",
"repository": "https://github.com/aminya/astro-plugins",
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"type": "module",
"workspaces": [
"./packages/*",
"./test/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"bump": "ncu -u -x 'eslint' && turbo run bump && bun update",
"clean": "shx rm -rf ./packages/*/dist/ ./test/dist/ ./test/.astro",
"doc": "bun '--filter=./packages/*' run doc && bun run format",
"prepare": "turbo run build",
"test": "run-s clean build && run-s 'test.*'",
"test.astro5.htmlnano": "cd test/astro5 && cross-env NODE_ENV=production TEST=htmlnano bun run build",
"test.astro5.posthtml": "cd test/astro5 && cross-env NODE_ENV=production TEST=posthtml bun run build",
"test.astro6.htmlnano": "cd test/astro6 && cross-env NODE_ENV=production TEST=htmlnano bun run build",
"test.astro6.posthtml": "cd test/astro6 && cross-env NODE_ENV=production TEST=posthtml bun run build"
},
"prettier": "prettier-config-atomic",
"overrides": {
"sort-package-json": "4.0.0"
},
"devDependencies": {
"@tsconfig/bases": "^1.0.23",
"@types/node": "25.6.0",
"cross-env": "^10.1.0",
"cspell": "10.0.0",
"eslint": "^8",
"eslint-config-atomic": "1.22.1",
"npm-check-updates": "21.0.3",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"prettier-config-atomic": "4.0.0",
"readme-md-generator": "1.0.0",
"shx": "0.4.0",
"ts-readme": "1.1.3",
"typescript": "6.0.3",
"typesync": "0.14.3",
"turbo": "^2.9.6"
},
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=16"
}
}