-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.63 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
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
{
"name": "yaml-unist-parser",
"version": "3.2.1",
"description": "A YAML parser that produces output compatible with unist",
"keywords": [
"unist",
"yaml"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./*": "./*"
},
"repository": "prettier/yaml-unist-parser",
"homepage": "https://github.com/prettier/yaml-unist-parser#readme",
"author": {
"name": "Ika",
"email": "ikatyang@gmail.com",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"lint:types": "tsc",
"fix": "run-s \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "prettier . --write",
"test": "vitest",
"build": "tsdown --unbundle",
"release": "release-it"
},
"dependencies": {
"yaml": "^2.9.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "26.5.1",
"@vitest/coverage-v8": "5.0.0",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "14.0.0",
"globals": "17.12.0",
"jest-snapshot-serializer-raw": "2.0.0",
"npm-run-all2": "9.0.3",
"prettier": "3.9.6",
"release-it": "21.0.2",
"tsdown": "0.23.0",
"typescript": "6.0.3",
"typescript-eslint": "8.70.0",
"vite": "8.3.0",
"vitest": "5.0.0",
"yaml-test-suite": "0.1.0"
},
"engines": {
"node": ">= 14"
},
"files": [
"/dist"
],
"packageManager": "yarn@4.18.0"
}