package.json raw
1 {
2 "name": "anneal",
3 "version": "0.1.0",
4 "description": "CSP/Actor building blocks for TypeScript",
5 "type": "module",
6 "main": "dist/index.js",
7 "types": "dist/index.d.ts",
8 "exports": {
9 ".": {
10 "import": "./dist/index.js",
11 "types": "./dist/index.d.ts"
12 }
13 },
14 "files": [
15 "dist"
16 ],
17 "scripts": {
18 "build": "tsc",
19 "test": "tsc && node --test dist/index.test.js"
20 },
21 "devDependencies": {
22 "typescript": "^5.0.0",
23 "@types/node": "^22.0.0"
24 },
25 "license": "AGPL-3.0-or-later"
26 }
27