-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "@cloudmosa-inc/cloudphone-types",
"version": "1.0.2",
"description": "Cloud Phone TypeScript type declarations",
"keywords": [
"typescript",
"types",
"type-definitions",
"declarations",
"cloud-phone"
],
"homepage": "https://github.com/cloudmosa/cloudphone-types#readme",
"bugs": {
"url": "https://github.com/cloudmosa/cloudphone-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudmosa/cloudphone-types.git"
},
"license": "Apache-2.0",
"author": "Tom Barrasso <barrasso@cloudmosa.com> (https://developer.cloudfone.com/)",
"type": "module",
"main": "types.d.ts",
"types": "types.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:types": "npx tsc --noEmit types.d.ts",
"format": "npx prettier --write \"**/*.{ts,d.ts,json,md}\"",
"format:check": "npx prettier --check \"**/*.{ts,d.ts,json,md}\"",
"validate": "npm run format:check && npm run test:types"
},
"devDependencies": {
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}