-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@specs-feup/clava-vitis-integration",
"version": "1.1.0",
"author": "Tiago Lascasas Santos <tiagolascasas@outlook.com> (https://tiagolascasas.dev)",
"description": "A Clava extension to interact with AMD/Xilinx's Vitis ",
"type": "module",
"private": false,
"scripts": {
"test:proj": "clava dist/test/TestSingleFileProject.js -- clang inputs/scenarioA",
"test:syn": "clava dist/test/TestSingleFileSynthesis.js -- clang inputs/scenarioB.cpp",
"test:impl": "clava dist/test/TestSingleFileImpl.js -- clang inputs/scenarioB.cpp",
"test:report-syn": "clava dist/test/TestSynReportParsing.js",
"test:report-impl": "clava dist/test/TestImplReportParsing.js",
"test:edgedetect-syn": "clava dist/test/TestEdgedetectSyn.js -- clang inputs/edgedetect",
"test:edgedetect-impl": "clava dist/test/TestEdgedetectImpl.js -- clang inputs/edgedetect",
"test:pragmas": "clava dist/test/TestDirectiveInsertion.js -- clang inputs/edgedetect",
"test:pragmas-syn": "clava dist/test/TestDirectiveSynthesis.js -- clang inputs/edgedetect",
"test:unsynthesis": "clava dist/test/TestUnsynthesizability.js -- clang inputs/unsynthesizable",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint .",
"docs": "typedoc",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"exports": {
"./VitisHlsConfig": "./dist/src/VitisHlsConfig.js",
"./VitisReports": "./dist/src/VitisReports.js",
"./VitisHls": "./dist/src/VitisHls.js",
"./HlsDirective": "./dist/src/directives/HlsDirective.js",
"./HlsArrayPartition": "./dist/src/directives/HlsArrayPartition.js",
"./HlsInline": "./dist/src/directives/HlsInline.js",
"./HlsPipeline": "./dist/src/directives/HlsPipeline.js",
"./HlsUnroll": "./dist/src/directives/HlsUnroll.js"
},
"files": [
"dist/src"
],
"dependencies": {
"@specs-feup/clava": "^3.5.2",
"chalk": "^5.3.0",
"fast-xml-parser": "^4.5.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/clava-vitis-integration.git"
}
}