-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "@autoguru/utilities",
"version": "1.3.3",
"description": "A collection of smallish things that help AutoGuru write code.",
"homepage": "https://github.com/autoguru-au/octane/tree/master/packages/utilities#readme",
"repository": "https://github.com/autoguru-au/octane/tree/master/packages/utilities",
"license": "MIT",
"files": [
"dist"
],
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "yarn run build"
},
"dependencies": {
"tiny-invariant": "^1.0.6",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@autoguru/eslint-plugin": "*",
"@autoguru/jest-preset": "*",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.26.3",
"@types/babel-types": "^7.0.10",
"@types/glob": "^7.1.4",
"@types/node": "^16.4.13",
"@types/node-fetch": "^2.5.12",
"@types/sade": "^1.7.3",
"@types/webpack": "^5.28.5",
"babel-plugin-macros": "^3.1.0",
"browserslist-config-autoguru": "*",
"typescript": "5.3.3"
},
"publishConfig": {
"access": "public"
}
}