-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "read-pubspec",
"version": "0.0.0-development",
"description": "Read a pubspec.yaml file",
"author": "Kirk Eaton <[email protected]>",
"bugs": {
"url": "https://github.com/kirkeaton/read-pubspec/issues"
},
"dependencies": {
"yaml": "2.7.0"
},
"devDependencies": {
"@kirkeaton/prettier-config": "1.0.3",
"@kirkeaton/semantic-release-config": "1.0.2",
"@kirkeaton/tsconfig": "1.0.0",
"@types/node": "22.10.5",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/kirkeaton/read-pubspec#readme",
"keywords": [
"dart",
"file",
"flutter",
"load",
"parse",
"pubspec",
"read",
"yaml"
],
"license": "MIT",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/kirkeaton/read-pubspec.git"
},
"scripts": {
"build": "pnpm clean && tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build",
"test": "tsx --test"
},
"type": "module"
}