-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.15 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
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
86
{
"name": "typespec-fast-check",
"version": "0.0.1",
"author": {
"name": "Tomer Aberbach",
"email": "[email protected]",
"url": "https://tomeraberba.ch"
},
"description": "A TypeSpec emitter for fast-check arbitraries.",
"keywords": [
"arbitraries",
"codegen",
"fast-check",
"typespec",
"typespec-emitter"
],
"homepage": "https://github.com/TomerAberbach/typespec-fast-check",
"repository": "TomerAberbach/typespec-fast-check",
"bugs": {
"url": "https://github.com/TomerAberbach/typespec-fast-check/issues"
},
"license": "MIT",
"files": [
"dist",
"lib"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"exports": {
".": {
"typespec": "./lib/main.tsp",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./testing": {
"default": "./dist/testing/index.js",
"types": "./dist/testing/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"format": "tomer format",
"lint": "tomer lint",
"typecheck": "tomer typecheck",
"test": "cross-env NODE_ENV=production tomer test",
"build": "tomer build",
"clean": "tomer clean dist",
"prepublishOnly": "tomer build"
},
"prettier": "tomer/prettier",
"dependencies": {
"@alloy-js/core": "^0.3.0",
"@alloy-js/typescript": "^0.3.0",
"keyalesce": "^2.2.0",
"lfi": "^3.8.0",
"toposort": "^2.0.2"
},
"peerDependencies": {
"@typespec/compiler": "^0.62.0"
},
"devDependencies": {
"@fast-check/vitest": "^0.1.4",
"@types/jsesc": "^3.0.3",
"@types/node": "^22.10.1",
"@types/pascalcase": "^1.0.3",
"@types/toposort": "^2.0.7",
"@typespec/compiler": "^0.62.0",
"@vitest/coverage-v8": "^2.1.8",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"fast-check": "^3.23.1",
"jsesc": "github:TomerAberbach/jsesc#feat/typed-arrays",
"module-from-string": "^3.3.1",
"prettier": "^3.4.1",
"serialize-error": "^11.0.3",
"source-map-support": "^0.5.21",
"tomer": "^6.1.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}