Skip to content

Commit 12d8836

Browse files
committed
Add typescript package
1 parent e835841 commit 12d8836

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "twig-unused-css-finder",
3+
"version": "0.1.0",
4+
"description": "A tool to find unused CSS in Twig templates",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "node index.js",
8+
"test": "echo \"Error: no test specified\" && exit 1"
9+
},
10+
"keywords": ["twig", "css", "unused", "finder"],
11+
"author": "Yilmaz Oktav",
12+
"license": "MIT",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/yoktav/twig-unused-css-finder.git"
16+
},
17+
"engines": {
18+
"node": ">=14.0.0"
19+
},
20+
"devDependencies": {
21+
"@types/node": "^14.14.31",
22+
"tslib": "^2.4.0",
23+
"typescript": "^4.2.2"
24+
},
25+
"dependencies": {
26+
"fs-extra": "^9.1.0"
27+
}
28+
}

0 commit comments

Comments
 (0)