Files
tsclass/package.json

65 lines
1.4 KiB
JSON
Raw Normal View History

2016-05-02 07:32:38 +02:00
{
2018-06-09 15:28:47 +02:00
"name": "@tsclass/tsclass",
2025-03-20 17:44:10 +00:00
"version": "6.1.1",
2018-06-09 15:11:37 +02:00
"private": false,
2024-04-16 18:40:54 +02:00
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
2020-03-22 22:21:47 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-04-28 12:18:26 +02:00
"type": "module",
2016-05-02 07:32:38 +02:00
"scripts": {
2019-10-02 11:11:22 +02:00
"test": "tstest test/",
2022-06-10 13:35:00 +02:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-05-02 07:32:38 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsclass/tsclass.git"
},
"keywords": [
"TypeScript",
2024-04-16 18:40:54 +02:00
"Classes",
"Interfaces",
"Code Quality",
"Networking",
"Business",
"Finance",
"Content Management",
"Containerization",
"Database",
"Event Management",
"Authentication",
"Web Development"
2016-05-02 07:32:38 +02:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsclass/tsclass/issues"
},
2017-11-09 12:13:27 +01:00
"homepage": "https://github.com/tsclass/tsclass#readme",
2019-10-02 11:11:22 +02:00
"dependencies": {
"type-fest": "^4.37.0"
2019-10-02 11:11:22 +02:00
},
2018-06-09 15:15:54 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.2.6",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.13.9"
2019-07-08 14:04:11 +02:00
},
"files": [
2019-10-21 17:29:10 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-22 22:21:47 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-21 17:29:10 +02:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-08 14:04:11 +02:00
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
2019-07-08 14:04:11 +02:00
]
2024-04-17 19:16:04 +02:00
}