- Migrated all pages from Next.js to Astro - Added PDPA-compliant Privacy Policy (Thai) - Added PDPA-compliant Terms & Conditions (Thai) - Added Cookie Policy with disclosure (Thai) - Implemented cookie consent banner (client-side) - Integrated Umami Analytics placeholder - Blog system with 3 posts - Optimized Docker configuration for production - Static site build (184KB, 11 pages) - Ready for Easypanel deployment Backup: /Users/kunthawatgreethong/Gitea/dealplustech-backup-nextjs-20260309.tar.gz
75 lines
2.6 KiB
JSON
75 lines
2.6 KiB
JSON
{
|
|
"name": "deep-diff",
|
|
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
|
|
"version": "1.0.2",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"diff",
|
|
"difference",
|
|
"compare",
|
|
"change-tracking"
|
|
],
|
|
"author": "Phillip Clark <phillip@flitbit.com>",
|
|
"contributors": [
|
|
"Simen Bekkhus <sbekkhus91@gmail.com>",
|
|
"Paul Pflugradt <paulpflugradt@googlemail.com>",
|
|
"wooorm <tituswormer@gmail.com>",
|
|
"Nicholas Calugar <njcalugar@gmail.com>",
|
|
"Yandell <hyandell@amazon.com>",
|
|
"Thiago Santos <thia.mdossantos@gmail.com>",
|
|
"Steve Mao <maochenyan@gmail.com>",
|
|
"Mats Bryntse <mats.dev@bryntum.com>",
|
|
"Phillip Clark <pclark@leisurelink.com>",
|
|
"ZauberNerd <zaubernerd@zaubernerd.de>",
|
|
"ravishivt <javishi@gmail.com>",
|
|
"Daniel Spangler <daniel.spangler@gmail.com>",
|
|
"Sam Beran <sberan@gmail.com>",
|
|
"Thomas de Barochez <thomas.barochez+github@gmail.com>",
|
|
"Morton Fox <github@qslw.com>",
|
|
"Amila Welihinda <amilajack@users.noreply.github.com>",
|
|
"Will Biddy <willbiddy@gmail.com>",
|
|
"icesoar <icesoar@hotmail.com>",
|
|
"Serkan Serttop <serkanserttop@yahoo.com>",
|
|
"orlando <operri@opentable.com>",
|
|
"Tom MacWright <tmcw@users.noreply.github.com>",
|
|
"Denning <denningj@amazon.com>",
|
|
"Dan Drinkard <dan.drinkard@gmail.com>",
|
|
"Elad Efrat <elad@iNNU.ORG>",
|
|
"caasi Huang <caasi.igd@gmail.com>",
|
|
"Tom Ashworth <tashworth@twitter.com>"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/flitbit/diff.git"
|
|
},
|
|
"main": "./index.js",
|
|
"scripts": {
|
|
"prerelease": "npm run clean && npm run test",
|
|
"release": "uglifyjs -c -m -o dist/deep-diff.min.js --source-map -r '$,require,exports,self,module,define,navigator' index.js",
|
|
"clean": "rimraf dist && mkdir dist",
|
|
"preversion": "npm run release",
|
|
"postversion": "git push && git push --tags",
|
|
"pretest": "npm run lint",
|
|
"test": "mocha test/**/*.js",
|
|
"test:watch": "nodemon --ext js,json --ignore dist/ --exec 'npm test'",
|
|
"preci": "npm run lint",
|
|
"ci": "mocha --reporter mocha-junit-reporter test/**/*.js",
|
|
"lint": "eslint index.js test"
|
|
},
|
|
"devDependencies": {
|
|
"bluebird": "^3.5.1",
|
|
"deep-equal": "^1.0.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-mocha": "^5.0.0",
|
|
"expect.js": "^0.3.1",
|
|
"json": "^9.0.6",
|
|
"json-ptr": "^1.1.0",
|
|
"lodash": "^4.17.10",
|
|
"mocha": "^5.1.1",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"nodemon": "^1.17.4",
|
|
"rimraf": "^2.6.2",
|
|
"uglify-js": "^3.3.25"
|
|
}
|
|
}
|