smartmanifest/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-05-27 11:13:41 +00:00
{
2023-07-10 08:16:22 +00:00
"name": "@push.rocks/smartmanifest",
2023-06-11 22:42:30 +00:00
"version": "2.0.2",
2019-05-27 11:13:41 +00:00
"private": false,
2024-04-14 15:56:20 +00:00
"description": "A toolkit for constructing web application manifests with TypeScript support.",
2023-06-11 20:16:28 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-05-27 11:13:41 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
2023-06-11 20:16:28 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2019-05-27 11:13:41 +00:00
},
"devDependencies": {
2023-06-11 20:16:28 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^20.3.0"
2019-05-27 11:13:41 +00:00
},
2019-06-15 16:10:09 +00:00
"files": [
2020-01-30 12:56:44 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2023-06-11 20:16:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-01-30 12:56:44 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-06-15 16:10:09 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2023-06-11 20:16:28 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2024-04-14 15:56:20 +00:00
],
"keywords": [
"web app manifest",
"service worker",
"PWA",
"TypeScript",
"node.js",
"web development"
2024-05-29 12:14:35 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartmanifest",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmanifest.git"
}
2023-07-10 08:16:22 +00:00
}