-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
{
"name": "plum-extension",
"displayName": "plum",
"version": "1.0.1",
"description": "Accelerate your web personalization with PLUM's VSCode extension, a mixin toolset powered by SASS 🩷",
"publisher": "raja",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"icon": "./assets/plum-gray.png",
"readme": "./README.md",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/plum-extension.git"
},
"homepage": "https://github.com/RajaRakoto/plum-extension#readme",
"bugs": "https://github.com/RajaRakoto/plum-extension/issues",
"files": [
"dist"
],
"keywords": [
"plum",
"extension",
"vscode",
"snippets",
"css",
"sass",
"collection",
"mixins",
"toolkit",
"scss",
"styles"
],
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Snippets"
],
"scripts": {
"script:es6": "bun es6.js",
"clean": "rimraf build dist coverage",
"build": "bun run clean && bun build.js && vsce package && mv plum-*.vsix dist",
"test": "bun test",
"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",
"nvm": "nvm use"
},
"contributes": {
"snippets": [
{
"language": "scss",
"path": "./dist/plum-extension.code-snippets"
}
]
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"depcheck": "^1.4.7",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^17.0.6",
"rimraf": "^6.0.1"
}
}