-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 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
{
"name": "@raycast/utils",
"version": "2.3.1",
"description": "Set of utilities to streamline building Raycast extensions",
"author": "Raycast Technologies Ltd.",
"homepage": "https://developers.raycast.com/utilities/getting-started",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.js",
"require": "./dist/main.js"
}
},
"scripts": {
"lint": "eslint src/ test/",
"build": "(rm -rf .parcel-cache || true) && (rm -rf dist || true) && parcel build",
"dev": "parcel watch",
"test": "tsc -p test/tsconfig.json && vitest run",
"prepublishOnly": "npm run build && npm run lint && npm test",
"postpublish": "gh workflow run sync-utils-docs.yml --repo raycast/extensions"
},
"peerDependencies": {
"@raycast/api": ">=1.99.4",
"react": ">=19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"keywords": [
"Raycast",
"utilities",
"extensions"
],
"files": [
"dist",
"README.md"
],
"license": "MIT",
"dependencies": {
"dequal": "^2.0.3"
},
"devDependencies": {
"@parcel/packager-ts": "^2.16.4",
"@parcel/transformer-typescript-types": "^2.16.4",
"@raycast/api": "1.99.4",
"@raycast/eslint-config": "^2.2.0",
"@testing-library/react": "^16.3.2",
"@types/node": "22.13.4",
"eslint": "^10.8.0",
"jsdom": "^27.4.0",
"parcel": "^2.16.4",
"prettier": "^3.9.6",
"react-dom": "^19.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}