-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@bacons/xcode",
"version": "1.0.0-alpha.33",
"main": "./build/index",
"types": "./build/index.d.ts",
"description": "pbxproj parser",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EvanBacon/xcode.git"
},
"author": "Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)",
"keywords": [
"pbxproj",
"xcodeproj",
"xcode",
"ios"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./json": {
"types": "./build/json/index.d.ts",
"default": "./build/json/index.js"
},
"./scheme": {
"types": "./build/scheme/index.d.ts",
"default": "./build/scheme/index.js"
},
"./workspace": {
"types": "./build/workspace/index.d.ts",
"default": "./build/workspace/index.js"
},
"./xcconfig": {
"types": "./build/xcconfig/index.d.ts",
"default": "./build/xcconfig/index.js"
},
"./breakpoints": {
"types": "./build/breakpoints/index.d.ts",
"default": "./build/breakpoints/index.js"
},
"./settings": {
"types": "./build/settings/index.d.ts",
"default": "./build/settings/index.js"
}
},
"files": [
"build"
],
"dependencies": {
"@expo/plist": "^0.0.18",
"debug": "^4.3.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@chevrotain/types": "10.1.1",
"@expo/spawn-async": "^1.7.2",
"@tsconfig/node14": "^1.0.1",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.27",
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9",
"@types/uuid": "^8.3.4",
"jest": "^27.0.1",
"jest-watch-typeahead": "^1.1.0",
"mitata": "^1.0.34",
"tempy": "^0.7.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"xcode": "^3.0.1"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"test": "jest",
"bench": "bun run bench/parse.bench.ts",
"bench:compare": "bun run bench/compare.ts",
"bench:setup": "cd bench/swift-bench && swift build -c release",
"prepare": "bun run clean && bun run build"
}
}