-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.05 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
{
"publisher": "KalimahApps",
"name": "taqwim",
"displayName": "PHPTaqwim",
"description": "PHP linter and formatter",
"version": "0.0.67",
"homepage": "https://taqwim.kalimah-apps.com/",
"repository": {
"type": "git",
"url": "https://github.com/kalimahapps/taqwim.git"
},
"bugs": {
"url": "https://github.com/kalimahapps/taqwim/issues"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"license": "MIT",
"activationEvents": [
"onLanguage:php"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"taqwim.config.js",
".taqwim.json"
],
"url": "https://raw.githubusercontent.com/kalimahapps/taqwim/main/schema.json"
}
]
},
"scripts": {
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"compile": "tsc -p ./",
"coverage": "c8 --clean npm run test",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"package": "vsce package",
"postinstall": "cd taqwim && npm install",
"test": "node ./dist/src/test/run-tests.js",
"vscode:prepublish": "npm run compile"
},
"dependencies": {
"chalk": "^5.3.0",
"globby": "^13.2.2"
},
"devDependencies": {
"@kalimahapps/eslint-config": "^1.2.91",
"@types/glob": "^8.1.0",
"@types/jasmine": "^4.3.5",
"@types/node": "^20.5.2",
"@types/vscode": "^1.81.0",
"@vitest/coverage-v8": "^0.32.4",
"@vscode/test-electron": "^2.3.4",
"c8": "^8.0.1",
"eslint": "^9.8.0",
"glob": "^10.3.3",
"jasmine": "^5.1.0",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"typescript": "^5.1.6",
"vite": "^5.3.5",
"vitepress": "^1.3.1",
"vitest": "^0.32.4"
},
"keywords": [
"php",
"format",
"lint",
"language"
],
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"preview": true,
"main": "dist/src/index.js",
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.81.0",
"node": ">=18.0.0"
}
}