-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.3 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@raja-rakoto/plum",
"version": "1.1.1",
"description": "Customize your website faster with PLUM, a mixins toolset powered by SASS. Quickly produce consistent, scalable CSS output, regardless of project size 🩷",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/plum.git"
},
"homepage": "https://github.com/RajaRakoto/plum#readme",
"bugs": "https://github.com/RajaRakoto/plum/issues",
"keywords": [
"plum",
"css",
"sass",
"collection",
"mixins",
"toolkit",
"scss",
"styles"
],
"engines": {
"bun": ">= 1.0.26"
},
"scripts": {
"start": "bun dist/index.js",
"start:smol": "bun --smol dist/index.js",
"start:bin": "./dist/plum",
"clean": "rimraf build dist coverage",
"dev": "bun run src/index.ts",
"dev:watch": "bun --watch run src/index.ts",
"dev:hot": "bun --hot run src/index.ts",
"dev:smol:watch": "bun --smol --watch run src/index.ts",
"dev:smol:hot": "bun --smol --hot run src/index.ts",
"build": "bun run clean && bun run build.js",
"build:watch": "bun build src/index.ts --outdir dist --watch",
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/plum",
"test:plum": "grunt test",
"test:unit": "bun test",
"test:unit:watch": "bun test --watch",
"documentation": "grunt documentation",
"prettier": "prettier --config .prettierrc --write .",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"backup": "grunt backup",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"npm-login": "npm login",
"npm-publish": "npm publish --access public",
"npm-unpublish": "npm unpublish --force @raja-rakoto/plum",
"npm-reset:registry": "npm config delete registry",
"npm-check:registry": "npm config get registry",
"npm-proxy-set:registry": "npm set registry http://localhost:4873/",
"npm-proxy:start": "bun run npm-proxy-set:registry && verdaccio",
"npm-proxy:publish": "npm publish --registry http://localhost:4873/",
"npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ @raja-rakoto/plum",
"npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish",
"script:global-docs": "cd src/utils/scripts && bun global-docs.js > ../../../README.md && cd ../../../ && bun run prettier",
"script:global-charset": "cd src/utils/scripts && bun global-charset.js",
"script:hover-comment": "cd src/utils/scripts && bun hover-comment.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "^1.1.6",
"@types/jest": "^29.5.12",
"bun-plugin-dts": "^0.2.3",
"depcheck": "^1.4.7",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell": "^4.0.0",
"jest": "^29.7.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^17.0.6",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sassdoc": "^2.7.4",
"ts-api-utils": "^1.3.0",
"ts-jest": "^29.2.4",
"ungit": "^1.5.26"
}
}