-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "ampalibe",
"displayName": "ampalibe",
"version": "1.0.8",
"description": "VSCode extension for Ampalibe framework 🥝",
"publisher": "iTeam-S",
"author": "Raja Rakotonirina <[email protected]>",
"license": "MIT",
"icon": "./assets/ampalibe.png",
"readme": "./README.md",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/ampalibe-extension.git"
},
"homepage": "https://github.com/RajaRakoto/ampalibe-extension#readme",
"bugs": "https://github.com/RajaRakoto/ampalibe-extension/issues",
"files": ["dist"],
"keywords": [
"ampalibe",
"extension",
"vscode",
"snippets",
"bot",
"chatbot",
"messenger"
],
"engines": {
"vscode": "^1.39.0"
},
"categories": ["Snippets"],
"scripts": {
"script:es6": "bun es6.js",
"script:table": "bun table.js > table",
"clean": "rimraf build dist coverage",
"build": "bun run clean && bun build.js && vsce package && mv ampalibe-*.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": "python",
"path": "./dist/ampalibe-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",
"traverse": "^0.6.9"
}
}