-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.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
{
"name": "@devaloop/prettier-plugin-devalang",
"private": false,
"version": "0.0.7",
"main": "dist/index.js",
"homepage": "https://devalang.com",
"repository": {
"type": "git",
"url": "https://github.com/devaloop-labs/prettier-plugin-devalang"
},
"type": "commonjs",
"scripts": {
"build": "tsc",
"test": "npm run build && node test/index.js",
"test:v2": "npm run build && node test/test-v2.js",
"test:chains": "npm run build && node test/test-chains.js",
"test:blanks": "npm run build && node test/test-blanks.js",
"test:all": "npm run build && node test/test-all.js",
"demo": "npm run build && node test/demo.js",
"prettier": "npm run build && prettier --plugin ./dist/index.js --write .",
"prettier:check": "npm run build && prettier --plugin ./dist/index.js --check ."
},
"keywords": [
"prettier",
"plugin",
"devalang",
"formatting",
"code",
"deva"
],
"author": "Devaloop",
"license": "MIT",
"description": "Prettier plugin for Devalang formatting",
"dependencies": {
"@types/node": "^24.0.10",
"prettier": "^3.6.2"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}