-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.66 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@autossey/prxmpt",
"version": "0.2.0",
"description": "Prompt Crafting with JSX",
"license": "MIT",
"private": false,
"author": "Connor White",
"homepage": "https://github.com/AutosseyAI/prxmpt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AutosseyAI/prxmpt.git"
},
"bugs": "https://github.com/AutosseyAI/prxmpt/issues",
"keywords": [
"prompt",
"prxmpt",
"autossey",
"ai",
"openai",
"jsx"
],
"type": "module",
"main": ".auto/build/index.js",
"types": ".auto/build/index.d.ts",
"exports": {
".": "./.auto/build/index.js",
"./tsconfig.json": "./tsconfig.json",
"./jsx-runtime": "./.auto/build/jsx-runtime.js",
"./jsx-dev-runtime": "./.auto/build/jsx-runtime.js",
"./loader": "./.auto/build/loader.js"
},
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo|tsconfig.json)",
"tsconfig.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "bun build:source && bun build:types",
"build:source": "swc source --config-file .swcrc --copy-files --delete-dir-on-start --out-dir .auto/build",
"build:types": "tsc --emitDeclarationOnly --project source/tsconfig.json",
"lint": "eslint source && eslint test",
"test": "TZ=UTC NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"typecheck": "tsc --noEmit --project source/tsconfig.json",
"watch:source": "swc source --config-file .swcrc --copy-files --out-dir .auto/build --watch",
"watch:types": "tsc --emitDeclarationOnly --watch --project source/tsconfig.json",
"prepack": "bun run build"
},
"dependencies": {
"@swc/core": "^1.3.89",
"as-typed-array": "^3.0.1",
"types-json": "4.0.1",
"yaml": "^2.3.2"
},
"devDependencies": {
"@autossey/eslint-config": "^0.2.0",
"@autossey/tsconfig": "^1.1.1",
"@jest/globals": "^29.7.0",
"@swc/jest": "^0.2.29",
"@types/node": "^20.8.2",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": "@autossey/eslint-config"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"source/**/*.tsx",
"source/**/*.ts"
],
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"coverageReporters": [
"text",
"lcov"
],
"extensionsToTreatAsEsm": [
".ts",
".tsx"
],
"moduleNameMapper": {
"^#(.*)": "$1",
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testRegex": "test/(.*).test.tsx?$",
"transform": {
"^.+\\.tsx?$": [
"@swc/jest",
{
"jsc": {
"target": "es2019"
}
}
]
}
}
}