forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "@finos/calm-models",
"version": "1.0.0",
"description": "CALM (Common Architecture Language Model) type definitions and model classes",
"exports": {
"./model": {
"import": "./dist/model/index.js",
"types": "./dist/model/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./canonical": {
"import": "./dist/canonical/template-models.js",
"types": "./dist/canonical/template-models.d.ts"
}
},
"files": [
"dist"
],
"private": true,
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"watch": "tsc -watch -p ./tsconfig.build.json",
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
"test": "vitest run",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"keywords": [
"calm",
"architecture",
"model",
"types",
"schema"
],
"author": "FINOS",
"license": "Apache-2.0",
"module": "esnext",
"type": "module",
"dependencies": {
"ajv": "^8.17.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^9.39.2",
"rimraf": "^5.0.0",
"typescript": "^5.0.0"
}
}